12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
export interface StepForm {
|
|
type?: number;
|
|
apply?: string;
|
|
username?: string;
|
|
password?: string;
|
|
password2?: string;
|
|
phone?: string;
|
|
code?: string;
|
|
nickname?: string;
|
|
companyName?: string;
|
|
}
|