7 lines
191 B
TypeScript
Executable file
7 lines
191 B
TypeScript
Executable file
import type {Plugin} from "ajv"
|
|
import getDef from "../definitions/regexp"
|
|
|
|
const regexp: Plugin<undefined> = (ajv) => ajv.addKeyword(getDef())
|
|
|
|
export default regexp
|
|
module.exports = regexp
|