import { Children } from "@alloy-js/core"; import { TSOutputSymbol } from "@alloy-js/typescript"; //#region src/typescript/contexts/member-scope.d.ts interface MemberScopeProps { children: Children; /** * The symbol that this member scope will create member symbols on. */ ownerSymbol: TSOutputSymbol; } /** * A member scope for TypeScript. Member declarations will create symbols * in this scope, which will be added to the owner symbol's members. */ declare function MemberScope(props: MemberScopeProps): Children; //#endregion export { MemberScope, MemberScopeProps }; //# sourceMappingURL=member-scope.d.cts.map