7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
namespace MisskeyEntity {
|
|
export type GetAll = {
|
|
tutorial: number;
|
|
defaultNoteVisibility: "public" | "home" | "followers" | "specified";
|
|
};
|
|
}
|