Files
notification-elements-demo/node_modules/cosmiconfig/dist/defaults.d.ts
Giuliano Silvestro 5d0c9ec7eb Initial commit: notification-elements-demo app
Interactive Angular 19 demo for @sda/notification-elements-ui with
6 sections: Bell & Feed, Notification Center, Inbox, Comments &
Threads, Mention Input, and Full-Featured layout. Includes mock
data, dark mode toggle, and real-time event log.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 21:49:19 +10:00

25 lines
1.2 KiB
TypeScript

export declare function getDefaultSearchPlaces(moduleName: string): Array<string>;
export declare function getDefaultSearchPlacesSync(moduleName: string): Array<string>;
export declare const globalConfigSearchPlaces: string[];
export declare const globalConfigSearchPlacesSync: string[];
export declare const metaSearchPlaces: string[];
export declare const defaultLoaders: Readonly<{
readonly '.mjs': import("./types").Loader;
readonly '.cjs': import("./types").Loader;
readonly '.js': import("./types").Loader;
readonly '.ts': import("./types").Loader;
readonly '.json': import("./types").LoaderSync;
readonly '.yaml': import("./types").LoaderSync;
readonly '.yml': import("./types").LoaderSync;
readonly noExt: import("./types").LoaderSync;
}>;
export declare const defaultLoadersSync: Readonly<{
readonly '.cjs': import("./types").LoaderSync;
readonly '.js': import("./types").LoaderSync;
readonly '.ts': import("./types").LoaderSync;
readonly '.json': import("./types").LoaderSync;
readonly '.yaml': import("./types").LoaderSync;
readonly '.yml': import("./types").LoaderSync;
readonly noExt: import("./types").LoaderSync;
}>;
//# sourceMappingURL=defaults.d.ts.map