matrix-react-sdk
Version:
SDK for matrix.org using React
19 lines (18 loc) • 554 B
TypeScript
/**
* Represents a common Matrix glob. This is commonly used
* for server ACLs and similar functions.
*/
export declare class MatrixGlob {
private regex;
/**
* Creates a new Matrix Glob
* @param {string} glob The glob to convert. Eg: "*.example.org"
*/
constructor(glob: string);
/**
* Tests the glob against a value, returning true if it matches.
* @param {string} val The value to test.
* @returns {boolean} True if the value matches the glob, false otherwise.
*/
test(val: string): boolean;
}