[Vuejs]-Vue2 Vite project with mixed TS and JS giving error TS9006

0👍

Obviously, I forgot to prepend interface forUserLoginRequestI with "export".

store.ts

export interface UserLoginRequestI {
    emailOrUsername?: string;
    password?: string;
}

Leave a comment