UNPKG

@modern-js/types

Version:

A Progressive React Framework for modern web development.

14 lines (10 loc) 273 B
export type InternalPlugins = Record< string, string | { path: string; forced?: boolean } >; export type ServerPlugin = { /** The plugin package.json's name */ name: string; options?: Record<string, any>; }; export type SSRMode = 'string' | 'stream' | false;