Type Alias: ParentNspNameMatchFn()
ts
type ParentNspNameMatchFn = (
name: string,
auth: {
[key: string]: any;
},
fn: (err: Error | null, success: boolean) => void,
) => void;The function used to match a namespace name.
Parameters
| Parameter | Type |
|---|---|
name | string |
auth | { [key: string]: any; } |
fn | (err: Error | null, success: boolean) => void |
Returns
void