@baseplate-dev/sync
Version:
Library for syncing Baseplate descriptions
22 lines • 562 B
TypeScript
/**
* A scope for a provider export
*/
export interface ProviderExportScope {
/**
* The name of the scope
*/
readonly name: string;
/**
* The description of the scope
*/
readonly description: string;
}
/**
* Creates a provider export scope
*
* @param name The name of the scope
* @param description The description of the scope
* @returns The provider export scope
*/
export declare function createProviderExportScope(name: string, description: string): ProviderExportScope;
//# sourceMappingURL=export-scopes.d.ts.map