Skip to content

Commit 3fa1439

Browse files
committed
Adjust deno code
1 parent 8e7cb10 commit 3fa1439

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/neo4j-driver-deno/lib/core/notification-filter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919
import { NotificationCategory, NotificationSeverityLevel } from './result-summary.ts'
2020

21-
type Combine<Enum1 extends string, Enum2 extends string, Separator extends string = "."> = `${Enum1}${Separator}${Enum2}`;
21+
type Combine<Enum1 extends string, Enum2 extends string, Separator extends string = '.'> = `${Enum1}${Separator}${Enum2}`
2222
type ExcludeUnknown<T> = Exclude<T, 'UNKNOWN'>
2323

2424
type FilterKeys = ExcludeUnknown<NotificationSeverityLevel> | 'ALL'
@@ -28,7 +28,7 @@ type CombinedFilter = Combine<FilterKeys, FilterInnerKeys>
2828
type SeverityDotCategoryFilters = { [key in FilterKeys]: { [k in FilterInnerKeys]: NotificationFilter } }
2929

3030
type NotificationFilter = 'NONE' | 'SERVER_DEFAULT' | CombinedFilter
31-
31+
3232
/**
3333
*
3434
* Notifications filters used during the {@link Driver} and {@link Session} configuration.

0 commit comments

Comments
 (0)