phina.js.d.ts
    Preparing search index...

    Interface CreateClassParams

    interface CreateClassParams {
        _accessor?: {
            [key: string]: { get?: Function; set?: Function };
            [key: number]: { get?: Function; set?: Function };
        };
        _defined?: (_class: Function) => void;
        _static?: { [key: string]: any; [key: number]: any };
        init?: Function;
        superClass?: Function;
        update?: Function;
        [key: string]: any;
        [key: number]: any;
    }

    Indexable

    • [key: string]: any
    • [key: number]: any
    Index

    Properties

    _accessor?: {
        [key: string]: { get?: Function; set?: Function };
        [key: number]: { get?: Function; set?: Function };
    }
    _defined?: (_class: Function) => void
    _static?: { [key: string]: any; [key: number]: any }
    init?: Function
    superClass?: Function
    update?: Function