10 lines
385 B
TypeScript
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;
|