You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
361 B
11 lines
361 B
import { Mod, BaseClass } from './standard';
|
|
export interface Model extends Mod {
|
|
name: string;
|
|
details?: string[];
|
|
}
|
|
export interface Model extends BaseClass {
|
|
name: string;
|
|
details?: string[];
|
|
}
|
|
export declare function removeCtx(data: any): any;
|
|
export declare function diff(preModels: Model[], nextModels: Model[], isMod?: boolean): Model[];
|
|
|