diff --git a/dist/types.d.ts b/dist/types.d.ts index 450f694..ccaf44f 100644 --- a/dist/types.d.ts +++ b/dist/types.d.ts @@ -32,4 +32,5 @@ export interface DoNotificationWindowProps { body: string; url?: string; width?: number; + disabledDelay?: boolean; } diff --git a/dist/types.js.map b/dist/types.js.map index 5437eac..5566825 100644 --- a/dist/types.js.map +++ b/dist/types.js.map @@ -1 +1 @@ -{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;AAqCC,CAAC"} \ No newline at end of file +{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;AAsCC,CAAC"} \ No newline at end of file diff --git a/src/types.ts b/src/types.ts index 40f9fd7..68d95f1 100644 --- a/src/types.ts +++ b/src/types.ts @@ -35,4 +35,5 @@ export interface DoNotificationWindowProps { body: string url?: string width?: number + disabledDelay?: boolean };