constant.d.ts 278 B

1234567
  1. import { EncodeComponent as EC } from '../runtime';
  2. import { ConstantEncode } from '../spec';
  3. export type ConstantOptions = Omit<ConstantEncode, 'type'>;
  4. /**
  5. * Extract a column of data filled with the specified constant.
  6. */
  7. export declare const Constant: EC<ConstantOptions>;