interface CoreData {
    attr(name?: string): any;
    attr(name: string, value: any): this;
    attr(obj: Record<string, any>): this;
    data(name?: string): any;
    data(name: string, value: any): this;
    data(obj: Record<string, any>): this;
    removeAttr(names?: string): this;
    removeData(names?: string): this;
}

Hierarchy (view full)

Methods