Archived
1
0

test: lint should fail

This commit is contained in:
Joe Previte 2022-09-22 10:40:26 -07:00
parent 1ed536bde9
commit 158c64db04
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -17,7 +17,8 @@ export enum AuthType {
None = "none",
}
export class Optional<T> {
// lint me
export class Optional<> {
public constructor(public readonly value?: T) {}
}