Skip to content

Commit 2f5206c

Browse files
committed
chore: improve types
1 parent 5077e25 commit 2f5206c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/js/entity/mixins/ImportantSettingsProviderMixin.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { InMemoryEntity } from "../in_memory";
22
export interface ContextProvider {
3-
domain: string;
3+
domain?: string;
44
}
55
export type ImportantSettingsProvider = {
66
important: object;

src/js/entity/mixins/ImportantSettingsProviderMixin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { deepClone } from "../../utils/clone";
22
import type { InMemoryEntity } from "../in_memory";
33

44
export interface ContextProvider {
5-
domain: string;
5+
domain?: string;
66
}
77

88
export type ImportantSettingsProvider = {

0 commit comments

Comments
 (0)