Frodo Library - v4.0.0-10
    Preparing search index...

    Type Alias ScriptType

    type ScriptType = {
        createScriptTypeExportTemplate(): ScriptTypeExportInterface;
        exportScriptTypes(): Promise<ScriptTypeExportInterface>;
        importScriptTypes(
            importData: ScriptTypeExportInterface,
            scriptTypeId?: string,
        ): Promise<ScriptTypeSkeleton[]>;
        readScriptType(scriptTypeId: string): Promise<ScriptTypeSkeleton>;
        readScriptTypes(): Promise<ScriptTypeSkeleton[]>;
        updateScriptType(
            scriptTypeId: string,
            scriptTypeData: ScriptTypeSkeleton,
        ): Promise<ScriptTypeSkeleton>;
    }
    Index

    Methods