this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix lexicon types

Juliet 51c7342a a88e140f

+4 -2
+4 -2
src/components/lexicon-schema.tsx
··· 3 3 import { createEffect, For, Show } from "solid-js"; 4 4 import { resolveLexiconAuthority } from "../utils/api.js"; 5 5 6 - // TODO: tidy types 7 - 8 6 interface LexiconSchema { 9 7 lexicon: number; 10 8 id: string; ··· 29 27 maxLength?: number; 30 28 minLength?: number; 31 29 maxGraphemes?: number; 30 + minGraphemes?: number; 32 31 items?: LexiconProperty; 33 32 refs?: string[]; 34 33 closed?: boolean; ··· 39 38 maximum?: number; 40 39 accept?: string[]; 41 40 maxSize?: number; 41 + knownValues?: string[]; 42 + format?: string; 42 43 } 43 44 44 45 interface LexiconObject { ··· 63 64 minLength?: number; 64 65 maxLength?: number; 65 66 maxGraphemes?: number; 67 + minGraphemes?: number; 66 68 minimum?: number; 67 69 maximum?: number; 68 70 enum?: string[];