types(@vant/use): fix useToggle typing #7843

This commit is contained in:
chenjiahan 2021-01-01 11:36:46 +08:00
parent b03341792e
commit a94c479196

View File

@ -6,5 +6,5 @@ export function useToggle(defaultValue = false) {
state.value = value;
};
return [state, toggle];
return [state, toggle] as const;
}