mirror of
https://github.com/idrawjs/idraw
synced 2026-05-24 10:08:34 +00:00
fix: TypeData error type
This commit is contained in:
parent
cc6f395a51
commit
7cd885e03c
1 changed files with 3 additions and 1 deletions
|
|
@ -5,10 +5,12 @@ type TypeDataBase = {
|
|||
bgColor?: string;
|
||||
}
|
||||
|
||||
type TypeData = TypeDataBase & {
|
||||
type TypeData = {
|
||||
elements: TypeElement<keyof TypeElemDesc>[];
|
||||
bgColor?: string;
|
||||
}
|
||||
|
||||
|
||||
export {
|
||||
TypeData,
|
||||
TypeDataBase,
|
||||
|
|
|
|||
Loading…
Reference in a new issue