Skip to content

Commit f53286b

Browse files
committed
chore: build options
1 parent 30e9c4f commit f53286b

File tree

3 files changed

+5194
-3
lines changed

3 files changed

+5194
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
dist
22
node_modules
3-
yarn.lock
43
yarn-error.log
54
test/coverage

src/component-schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ export enum DataType {
4040
NONE, I8 = 1, U8, I16, U16, I32, U32, F32, F64,
4141
SHORT, ushort, INT, uint, LONG, ulong, FLOAT, DOUBLE, STRING, BOOL
4242
}
43-
export const DataTypeObect = 99;
44-
export const DataTypeVoid = 98;
43+
export const DataTypeObect = 99 as DataType;
44+
export const DataTypeVoid = 98 as DataType;
4545

4646
export type ComponentConstructor<T = any> = { new (): T } & {
4747
__schema__: Schema;

0 commit comments

Comments
 (0)