UNPKG

@kwiz/common

Version:

KWIZ common utilities and helpers for M365 platform

17 lines (14 loc) 354 B
import { IDictionary } from "./common.types"; export interface IRegexExpression { pattern: string; example: string; options: string[]; isDefault: boolean; } export interface IRegexList extends IDictionary<IRegexExpression> { } declare global { interface IModernListSettings { RegexList?: IRegexList; } }