@shopify/cli-kit
Version:
A set of utilities, interfaces, and models that are common across all the platform features
7 lines (6 loc) • 346 B
TypeScript
import { AlertProps } from './components/Alert.js';
import { RenderOptions } from 'ink';
export interface AlertOptions extends AlertProps {
renderOptions?: RenderOptions;
}
export declare function alert({ type, headline, body, nextSteps, reference, link, customSections, orderedNextSteps, renderOptions, }: AlertOptions): string | undefined;