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>
21 lines
714 B
TypeScript
21 lines
714 B
TypeScript
import { MetadataKind, Signed, SignedOptions } from './base';
|
|
import { Delegations } from './delegations';
|
|
import { TargetFile } from './file';
|
|
import { JSONObject } from './utils';
|
|
type TargetFileMap = Record<string, TargetFile>;
|
|
interface TargetsOptions extends SignedOptions {
|
|
targets?: TargetFileMap;
|
|
delegations?: Delegations;
|
|
}
|
|
export declare class Targets extends Signed {
|
|
readonly type = MetadataKind.Targets;
|
|
readonly targets: TargetFileMap;
|
|
readonly delegations?: Delegations;
|
|
constructor(options: TargetsOptions);
|
|
addTarget(target: TargetFile): void;
|
|
equals(other: Targets): boolean;
|
|
toJSON(): JSONObject;
|
|
static fromJSON(data: JSONObject): Targets;
|
|
}
|
|
export {};
|