ion-oui
Version:
The client library of oui builder for ionic
18 lines (17 loc) • 612 B
TypeScript
import { OnInit, Type } from "@angular/core";
import { OUIIonElement } from '../oui-element';
import { OUIAbstractIonParser } from '../oui-parser';
export declare class OUIIonTextComponent extends OUIIonElement {
}
export declare class OUIIonTextParser extends OUIAbstractIonParser {
type: string;
componentType: Type<OUIIonElement>;
}
export declare class OUIIonDynamicTextComponent extends OUIIonElement implements OnInit {
text: string;
ngOnInit(): void;
}
export declare class OUIIonDynamicTextParser extends OUIAbstractIonParser {
type: string;
componentType: Type<OUIIonElement>;
}