import { PlaygroundSampleConfig } from '../tooling/types.js'; import { PlaygroundSample } from '../types.js'; export interface PlaygroundUserConfig extends Omit { /** * If the bundle library plugin should be loaded. */ readonly skipBundleLibraries?: boolean; readonly samples?: Record; } export interface PlaygroundConfig { readonly defaultEmitter: string; readonly libraries: readonly string[]; readonly samples: Record; } //# sourceMappingURL=types.d.ts.map