Add CLIOptions as an alias type of Options

This commit is contained in:
David Vogel 2025-11-15 20:40:21 +01:00
parent 1294d5f009
commit e9bd6a0928

11
cli-options.go Normal file
View File

@ -0,0 +1,11 @@
// Copyright (c) 2025 David Vogel
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
package typst
// CLIOptions contains all parameters that can be passed to a Typst CLI.
//
// Deprecated: Use typst.Options instead.
type CLIOptions = Options