import { CompilerHost, CompilerOptions, LinterDefinition, PackageJson, TypeSpecLibrary } from '@typespec/compiler'; export interface PlaygroundSample { filename: string; preferredEmitter?: string; content: string; /** * A short description of what this sample demonstrates. */ description?: string; /** * Category for grouping samples in the sample gallery. */ category?: string; /** * Compiler options for the sample. */ compilerOptions?: CompilerOptions; } export interface PlaygroundTspLibrary { name: string; packageJson: PackageJson; isEmitter: boolean; definition?: TypeSpecLibrary; linter?: LinterDefinition; } export interface BrowserHost extends CompilerHost { compiler: typeof import("@typespec/compiler"); libraries: Record; } //# sourceMappingURL=types.d.ts.map