3fd2b55406
This reverts commit 89eea5df52
.
9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
namespace MisskeyEntity {
|
|
export type App = {
|
|
id: string
|
|
name: string
|
|
callbackUrl: string
|
|
permission: Array<string>
|
|
secret: string
|
|
}
|
|
}
|