clear timer
This section is a work in progress.
Examples:
import { Canister, ic, TimerId, update, Void } from 'azle/experimental';
export default Canister({
clearTimer: update([TimerId], Void, (timerId) => {
ic.clearTimer(timerId);
})
});