ion-oui
Version:
The client library of oui builder for ionic
39 lines (38 loc) • 1.29 kB
TypeScript
import { Type } from "@angular/core";
import { OUIIonElement } from "../oui-element";
import { OUIAbstractIonParser } from "../oui-parser";
export declare class OUIIonRaisedButtonComponent extends OUIIonElement {
get padding(): any;
}
export declare class OUIIonRaisedButtonParser extends OUIAbstractIonParser {
type: string;
componentType: Type<OUIIonElement>;
}
export declare class OUIIonTextButtonComponent extends OUIIonElement {
get padding(): any;
}
export declare class OUIIonTextButtonParser extends OUIAbstractIonParser {
type: string;
componentType: Type<OUIIonElement>;
}
export declare class OUIIonElevatedComponent extends OUIIonElement {
get padding(): any;
}
export declare class OUIIonElevatedParser extends OUIAbstractIonParser {
type: string;
componentType: Type<OUIIonElement>;
}
export declare class OUIIonOutlinedComponent extends OUIIonElement {
get padding(): any;
}
export declare class OUIIonOutlinedParser extends OUIAbstractIonParser {
type: string;
componentType: Type<OUIIonElement>;
}
export declare class OUIIonOButtonComponent extends OUIIonElement {
get padding(): any;
}
export declare class OUIIonOButtonParser extends OUIAbstractIonParser {
type: string;
componentType: Type<OUIIonElement>;
}