Skip to content

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

ParameterType
namestring
auth{ [key: string]: any; }
fn(err: Error | null, success: boolean) => void

Returns

void