Enabled declarations in tsconfig to be true
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
import { XmlAttributeComponent } from "./default-attributes";
|
||||
|
||||
interface IAttributesProperties {
|
||||
export interface IAttributesProperties {
|
||||
val?: string | number | boolean;
|
||||
color?: string;
|
||||
space?: string;
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { BaseXmlComponent } from "./base";
|
||||
|
||||
type AttributeMap<T> = {[P in keyof T]: string};
|
||||
export type AttributeMap<T> = {[P in keyof T]: string};
|
||||
|
||||
export abstract class XmlAttributeComponent<T> extends BaseXmlComponent {
|
||||
protected root: T;
|
||||
|
Reference in New Issue
Block a user