js: font style for input
This commit is contained in:
2
doric-js/lib/src/util/flexbox.d.ts
vendored
2
doric-js/lib/src/util/flexbox.d.ts
vendored
@@ -64,7 +64,7 @@ export declare enum Display {
|
||||
FLEX = 0,
|
||||
NONE = 1
|
||||
}
|
||||
export declare type FlexValue = FlexTypedValue | number;
|
||||
export type FlexValue = FlexTypedValue | number;
|
||||
export interface FlexConfig {
|
||||
direction?: Direction;
|
||||
flexDirection?: FlexDirection;
|
||||
|
8
doric-js/lib/src/util/types.d.ts
vendored
8
doric-js/lib/src/util/types.d.ts
vendored
@@ -2,11 +2,11 @@ export interface Modeling {
|
||||
toModel(): Model;
|
||||
}
|
||||
export declare function obj2Model(obj: Model, convertor: (v: Function) => string): Model;
|
||||
declare type _M = string | number | boolean | Modeling | {
|
||||
type _M = string | number | boolean | Modeling | {
|
||||
[index: string]: Model;
|
||||
} | undefined;
|
||||
export declare type Model = _M | Array<_M>;
|
||||
export declare type Binder<T> = (v: T) => void;
|
||||
export type Model = _M | Array<_M>;
|
||||
export type Binder<T> = (v: T) => void;
|
||||
export declare class Mutable<T> {
|
||||
private val;
|
||||
private binders;
|
||||
@@ -16,5 +16,5 @@ export declare class Mutable<T> {
|
||||
bind(binder: Binder<T>): void;
|
||||
static of<E>(v: E): Mutable<E>;
|
||||
}
|
||||
export declare type ClassType<T> = new (...args: any) => T;
|
||||
export type ClassType<T> = new (...args: any) => T;
|
||||
export {};
|
||||
|
Reference in New Issue
Block a user