# GateContextValue

This type is used by an exported signature but is not directly exported from `@plandalf/react`'s package entrypoint. It is shown here from [components/Gate.tsx:9](https://github.com/plandalf/numi/blob/fc6f42b5ade3d63b71623934838a6509f17203e2/packages/react/src/components/Gate.tsx#L9) so the signature can be inspected fully.

```tsx
interface GateContextValue {
  name: string;
  access: boolean | null;
  checking: boolean;
  trigger: (sync?: GateSyncCallback, options?: Partial<FlowOpenOptions>) => Promise<GateResult>;
}
```

Source: https://plandalf.com/docs/packages/react/referenced-types/GateContextValue
