import { SlotRegistry } from './registry'; export class Slot { static withType() { return (registerFn: () => string) => { return new SlotRegistry(registerFn); } } } export type SlotProvider = (registerFn: () => string) => SlotRegistry;