ion-oui
Version:
The client library of oui builder for ionic
18 lines (17 loc) • 546 B
TypeScript
import { OnInit, Type } from "@angular/core";
import { OUIIonElement } from "../oui-element";
import { OUIAbstractIonParser } from "../oui-parser";
export declare class OUIIonFutureViewComponent extends OUIIonElement implements OnInit {
state: string;
list: any[];
constructor();
ngOnInit(): void;
_loadData(): Promise<void>;
get deepStyle(): {
height: string;
};
}
export declare class OUIIonFutureViewComponentParser extends OUIAbstractIonParser {
type: string;
componentType: Type<OUIIonElement>;
}