-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
61 lines (51 loc) · 1.56 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* eslint-disable @typescript-eslint/ban-types */
type PartialBy<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
import { CSSObject } from '@emotion/react';
type PropsWithStyle<P = {}> = P & {
className?: string;
css?: CSSObject;
};
declare module '@/data/parsed/entities.json' {
import { EntitiesEntries } from './types/parsed/entity';
const data: EntitiesEntries;
export default data;
}
declare module '@/data/parsed/codings.json' {
import { Codings } from './types/parsed/coding';
const data: Codings;
export default data;
}
declare module '@/data/parsed/descriptions.json' {
import { Descriptions } from './types/parsed/description';
const data: Descriptions;
export default data;
}
declare module '@/data/parsed/fields.json' {
import { Fields } from './types/parsed/field';
const data: Fields;
export default data;
}
declare module '@/data/parsed/labels-de.json' {
import { LabelsDe } from './types/parsed/label-de';
const data: LabelsDe;
export default data;
}
declare module '@/data/parsed/rda-properties.json' {
import { RdaProperties } from './types/parsed/rda-property';
const data: RdaProperties;
export default data;
}
declare module '@/data/parsed/schemas.json' {
import { Schemas } from './types/parsed/schema';
const data: Schemas;
export default data;
}
declare module '@/data/parsed/sta-notations.json' {
import { StaNotations } from './types/parsed/sta-notation';
const data: StaNotations;
export default data;
}
// declare module '@/data/parsed/.json' {
// const data: ;
// export default data;
// }