@photostructure/sqlite
    Preparing search index...

    Interface UserFunctionOptions

    interface UserFunctionOptions {
        deterministic?: boolean;
        directOnly?: boolean;
        useBigIntArguments?: boolean;
        varargs?: boolean;
    }
    Index

    Properties

    deterministic?: boolean

    If true, sets the SQLITE_DETERMINISTIC flag.

    false
    
    directOnly?: boolean

    If true, sets the SQLITE_DIRECTONLY flag.

    false
    
    useBigIntArguments?: boolean

    If true, converts integer arguments to BigInts.

    false
    
    varargs?: boolean

    If true, allows function to be invoked with variable arguments.

    false