decocms
Version:
CLI for managing deco.chat apps & projects
12 lines • 438 B
TypeScript
export type BindingToolScope = `${string}${typeof SEPARATOR}${string}`;
export interface BindingTool {
bindingName: string;
toolName: string;
}
declare const SEPARATOR = "::";
export declare const parser: {
fromBindingToolToScope: ({ bindingName, toolName, }: BindingTool) => BindingToolScope;
fromScopeToBindingTool: (scope: BindingToolScope) => BindingTool;
};
export {};
//# sourceMappingURL=parse-binding-tool.d.ts.map