Fix interface error

This commit is contained in:
Bill 2021-07-21 20:05:47 -04:00
parent c9365e0cf8
commit 0c48154274

View File

@ -1,6 +1,6 @@
export interface ILandingPageUserEntry export interface ILandingPageUserEntry
{ {
get userId(): number; userId: number;
get userName(): string; userName: string;
get figure(): string; figure: string;
} }