@tykoned/tykon
    Preparing search index...

    Type Alias TykonConfig

    type TykonConfig = {
        imports?: string[];
        module?: string;
        newLine?: string;
        package: string;
        spaces?: number;
        tabs?: number;
    }
    Index

    Properties

    imports?: string[]

    A list of imports to include in the generated code.

    imports: [
    "com.example.MyClass",
    "com.example.MyOtherClass",
    "com.example.functions.myFunction"
    module?: string

    The module name for the generated code. Defaults to the name of the current directory.

    `is-sorted`
    
    newLine?: string

    The newline string to use in the generated code. Defaults to \n.

    package: string

    The package name for the generated code.

    spaces?: number

    The number of spaces to use for indentation in the generated code. Defaults to 4.

    tabs?: number

    The number of tabs to use for indentation in the generated code. Defaults to 0.