Use optional property syntax for ILegality

This commit is contained in:
Tee
2021-03-04 07:45:38 -05:00
parent f47353849a
commit ba2ce6e79b

View File

@ -4,7 +4,7 @@ export enum Legality {
}
export interface ILegality {
expanded: Legality | undefined
standard: Legality | undefined
unlimited: Legality | undefined
expanded?: Legality;
standard?: Legality;
unlimited?: Legality;
}