mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-31 06:29:02 +08:00
11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
import { ActionName } from '../types';
|
|
import CanSendRecord from './CanSendRecord';
|
|
|
|
interface ReturnType {
|
|
yes: boolean;
|
|
}
|
|
|
|
export default class CanSendImage extends CanSendRecord {
|
|
actionName = ActionName.CanSendImage;
|
|
}
|