7 lines
127 B
TypeScript

export default interface ButtonVm {
props: {
title: string;
isDisable: boolean;
}
onClick(): void
}