import { App } from "./apps-registry"; export { App }; export type BuiltinApp = (typeof App)[keyof typeof App]; /** * AppRef is a string — the implementation name (e.g. "SlackCLIAPI"). * Built-in apps via App.slack are branded strings for per-app type safety. * Lookup is case-insensitive: App.slack, App.Slack, App.SLACK all resolve. * Unknown keys pass through as implementation names: App["MyCLIAPI@1.0.0"]. */ export type AppRef = string; //# sourceMappingURL=apps.d.ts.map