export type

This commit is contained in:
Daniel Lugo 2020-10-18 16:38:41 -04:00
parent 2b7d77dca5
commit cc083e64f8

View file

@ -1,7 +1,7 @@
/** /**
* @prettier * @prettier
*/ */
type Primitive = boolean | string | number export type Primitive = boolean | string | number
export interface Data { export interface Data {
[K: string]: ValidDataValue [K: string]: ValidDataValue