Sync my stories with primary device

This commit is contained in:
Josh Perez
2022-06-30 20:52:03 -04:00
committed by GitHub
parent 7554d8326a
commit 9155784d56
67 changed files with 2954 additions and 1238 deletions

View File

@@ -77,4 +77,8 @@ export class UUID {
}
return new UUID(`${padded}-0000-4000-8000-${'0'.repeat(12)}`);
}
public static fromString(value: string): UUIDStringType {
return new UUID(value).toString();
}
}