Home > @unseenco/backstage-core > ISheetObjectOptions
ISheetObjectOptions type
Options for ISheet.object() beyond prop definitions (visibility, showPropsOf, etc.).
Signature:
typescript
export type ISheetObjectOptions = {
reconfigure?: boolean;
visible?: boolean;
showPropsOf?: ISheetObject<any>[];
transient?: readonly TransientPropPath[];
static?: readonly StaticPropPath[];
__actions__THIS_API_IS_UNSTABLE_AND_WILL_CHANGE_IN_THE_NEXT_VERSION?: SheetObjectActionsConfig;
};