Files
JiboSDK/lib/dts/bt-flow/flow/gojs-loader/GojsLoader.d.ts
2026-03-22 03:21:45 +02:00

10 lines
385 B
TypeScript

import Procedure from "../flow-objects/Procedure";
declare class GojsLoader {
static getName(uri: string): string;
static getBase(uri: string): string;
static loadProcedureRelative(currentUri: string, name: string): Procedure;
static loadProcedure(uri: string): Procedure;
static loadParsedProcedure(uri: string, base: any): Procedure;
}
export default GojsLoader;