mirror of https://github.com/TriliumNext/Notes
server: Fix build errors after updating to latest TypeScript
parent
9fdb7b29de
commit
c0b3c8496e
@ -1,3 +1,3 @@
|
||||
type ValidatorFunc = (obj: unknown) => (string | undefined);
|
||||
export type ValidatorFunc = (obj: unknown) => (string | undefined);
|
||||
|
||||
type ValidatorMap = Record<string, ValidatorFunc[]>;
|
||||
export type ValidatorMap = Record<string, ValidatorFunc[]>;
|
||||
@ -1,4 +1,4 @@
|
||||
type SNoteRow = [ string, string, string, string, string, string, boolean ];
|
||||
type SBranchRow = [ string, string, string, string, string, boolean ];
|
||||
type SAttributeRow = [ string, string, string, string, string, boolean, number ];
|
||||
type SAttachmentRow = [ string, string, string, string, string, string, string ];
|
||||
export type SNoteRow = [ string, string, string, string, string, string, boolean ];
|
||||
export type SBranchRow = [ string, string, string, string, string, boolean ];
|
||||
export type SAttributeRow = [ string, string, string, string, string, boolean, number ];
|
||||
export type SAttachmentRow = [ string, string, string, string, string, string, string ];
|
||||
|
||||
Loading…
Reference in New Issue