armisa-models
Version:
models of armisa!
19 lines (18 loc) • 658 B
TypeScript
/// <reference types="react" />
import { ITypeOfFormForRoute } from "../../AmisaAuth/Menus/1-MenuFactory";
import { IMainStateFactory } from "../../Types";
export declare class Argument {
id?: number;
code?: string;
object?: any;
finedInRows?: boolean;
customPayload?: any;
typeOfForm?: ITypeOfFormForRoute;
ExtraStackMenuComponent?: React.ComponentType<{
mainState: IMainStateFactory;
}>;
constructor();
static Id(id: number, finedInRows?: boolean): Argument;
static Code(code: string, finedInRows?: boolean): Argument;
static Object(object: any, finedInRows?: boolean): Argument;
}