mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-03 08:39:04 +08:00
11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
import { ActionName } from '../types';
|
|
import CanSendRecord from './CanSendRecord';
|
|
|
|
interface ReturnType {
|
|
yes: boolean
|
|
}
|
|
|
|
export default class CanSendImage extends CanSendRecord {
|
|
actionName = ActionName.CanSendImage;
|
|
}
|