react-native-macos/flow-typed/npm/ansi-regex_v5.x.x.js

15 строки
262 B
JavaScript

/**
* @flow strict
* @format
*/
declare module 'ansi-regex' {
declare export type Options = {
/**
* Match only the first ANSI escape.
*/
+onlyFirst?: boolean,
};
declare export default function ansiRegex(options?: Options): RegExp;
}