mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 08:09:13 +08:00
96fa23ea7c
* feat: Tooltip, Popover, Dropdown, Tour support css var * chore: update snapshot * chore: code clean * chore: code clean * chore: update snapshot * chore: update snapshot * chore: update snapshot * chore: add test
12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
export default abstract class AbstractCalculator {
|
|
abstract add(num: number | string | AbstractCalculator): this;
|
|
|
|
abstract sub(num: number | string | AbstractCalculator): this;
|
|
|
|
abstract mul(num: number | string | AbstractCalculator): this;
|
|
|
|
abstract div(num: number | string | AbstractCalculator): this;
|
|
|
|
abstract equal(): string | number;
|
|
}
|