Skip to content

Commit

Permalink
Update index.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
linonetwo committed Mar 20, 2024
1 parent a0f3258 commit 0a93c89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tiddler/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ declare module 'tiddlywiki' {
export interface ITiddlerFields {
readonly [anyKey: string]: unknown;
readonly color?: string;
readonly 'color-scheme': 'dark' | 'light';
readonly created: Date;
readonly 'color-scheme'?: 'dark' | 'light';
readonly created?: Date;
readonly list?: string[];
readonly modified: Date;
readonly tags: string[];
readonly modified?: Date;
readonly tags?: string[];
readonly text: string;
readonly title: string;
readonly type: string;
Expand Down

0 comments on commit 0a93c89

Please sign in to comment.