8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
/**
|
|
* ## Preflight Function
|
|
* @param {string[] | string} preflight
|
|
* @param {boolean} [postflight]
|
|
* @returns {boolean}
|
|
*/
|
|
export default function preflightFn(preflight?: string[] | string, postflight?: boolean): boolean;
|