I am using a package in my TS application and I need to modify s particular interface in the typing.ts from the package.
the typings.d.ts of the package has this
export interface CreateSessionOptions {
id: string;
role?: 'user' | 'admin';
sessionDuration?: number;
data?: any;
}
but I need to add an extra role super-admin
. How can I modify this CreateSessionOptions
Any info would be supplied on request.