updated docs
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
interface UpdateFormProps {
|
||||
schemas: Record<string, any>;
|
||||
selectedRow: Record<string, any>;
|
||||
rollbackTo: string;
|
||||
labels: Record<string, string>;
|
||||
}
|
||||
interface CreateFormProps {
|
||||
schemas: Record<string, any>;
|
||||
selectedRow: Record<string, any>;
|
||||
labels: Record<string, string>;
|
||||
}
|
||||
|
||||
interface ViewFormProps {
|
||||
schemas: Record<string, any>;
|
||||
selectedRow: Record<string, any>;
|
||||
rollbackTo: string;
|
||||
labels: Record<string, string>;
|
||||
}
|
||||
|
||||
export type { UpdateFormProps, CreateFormProps, ViewFormProps };
|
||||
Reference in New Issue
Block a user