Files
notification-elements-demo/node_modules/@schematics/angular/resolver/schema.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

38 lines
1.5 KiB
TypeScript
Executable File

/**
* Creates a new resolver in your project. Resolvers are used to pre-fetch data before a
* route is activated, ensuring that the necessary data is available before the component is
* displayed. This can improve the user experience by preventing delays and loading states.
* This schematic generates a new resolver with the specified name and options.
*/
export type Schema = {
/**
* Creates the new resolver files at the top level of the current project. If set to false,
* a new folder with the resolver's name will be created to contain the files.
*/
flat?: boolean;
/**
* Creates the resolver as a function `ResolveFn` instead of a class. Functional resolvers
* can be simpler for basic scenarios.
*/
functional?: boolean;
/**
* The name for the new resolver. This will be used to create the resolver's class and spec
* files (e.g., `my-resolver.resolver.ts` and `my-resolver.resolver.spec.ts`).
*/
name: string;
/**
* The path where the resolver files should be created, relative to the current workspace.
* If not provided, the resolver will be created in the current directory.
*/
path?: string;
/**
* The name of the project where the resolver should be created. If not specified, the CLI
* will determine the project from the current directory.
*/
project: string;
/**
* Skip the generation of a unit test file `spec.ts` for the new resolver.
*/
skipTests?: boolean;
};