Hyperlinkv0.9.0-beta.0

Gate

Source src/Gate.ts:34513 lines
export interface TagSchemas<
  I extends Schema.Top = Schema.Top,
  A extends Schema.Top = Schema.Top,
  E extends Schema.Top = typeof Schema.Never,
> extends WireSchemas<I, A, E> {
  readonly description?: string;
  /**
   * Optional rate-limit policy declaration on the Tag — stamps `rateLimitKey`
   * metadata for widgets. Engine still needs `rateLimit` on {@link layer} /
   * {@link Service} config to enforce.
   */
  readonly rateLimit?: RateLimitOptions;
}