6 lines
89 B
TypeScript
6 lines
89 B
TypeScript
namespace MisskeyEntity {
|
|
export type Session = {
|
|
token: string;
|
|
url: string;
|
|
};
|
|
}
|