This commit is contained in:
2026-04-07 14:50:23 +09:00
commit b4e485502b
4778 changed files with 2017091 additions and 0 deletions

10
safekiso-server/node_modules/snyk/dist/lib/alerts.d.ts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
export type AlertType = 'info' | 'warning' | 'error';
export interface Alert {
type: AlertType;
name: string;
msg: string;
}
declare function registerAlerts(alerts: Alert[]): void;
declare function hasAlert(name: string): boolean;
declare function displayAlerts(): string;
export { registerAlerts, hasAlert, displayAlerts };