mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 06:23:08 +02:00
Append null to TODO type
This commit is contained in:
parent
9d89314afa
commit
3557741f13
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
export type ID = string;
|
export type ID = string;
|
||||||
export type DateString = string;
|
export type DateString = string;
|
||||||
|
|
||||||
type TODO = Record<string, any>;
|
type TODO = Record<string, any> | null;
|
||||||
|
|
||||||
export type User = {
|
export type User = {
|
||||||
id: ID;
|
id: ID;
|
||||||
|
|
Loading…
Reference in a new issue