Type alias DirExistsResponse

DirExistsResponse: {
    exists: false;
    uuid?: string;
} | {
    exists: true;
    uuid: string;
}

Type declaration

  • exists: false
  • Optional uuid?: string

Type declaration

  • exists: true
  • uuid: string

Generated using TypeDoc