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>;
}

Type declaration