Merge branch 'fix/variable-cleanup' of https://git.krews.org/nitro/nitro-renderer into fix/variable-cleanup

This commit is contained in:
Dank074 2021-07-21 19:22:30 -05:00
commit ffea626e94

View File

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