@prefecthq/prefect-ui-library
Version:
This library is the Vue and Typescript component library for [Prefect 2](https://github.com/PrefectHQ/prefect) and [Prefect Cloud 2](https://www.prefect.io/cloud/). _The components and utilities in this project are not meant to be used independently_.
12 lines (11 loc) • 790 B
TypeScript
import { adjectives, nouns } from '../mocks/sentences/sample';
import { MockFunction } from '../services/Mocker';
declare const characters: readonly ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
export declare const randomChar: MockFunction<typeof characters[number], []>;
export declare const randomNoun: MockFunction<typeof nouns[number], []>;
export declare const randomAdjective: MockFunction<typeof adjectives[number], []>;
export declare const randomString: MockFunction<string, [number?]>;
export declare const randomSentence: MockFunction<string, []>;
export declare const randomParagraph: MockFunction<string, [number?]>;
export declare const randomRunName: MockFunction<string, []>;
export {};