mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-19 16:01:23 +00:00
binding for Date.prototype.setSeconds()
This commit is contained in:
@ -1060,6 +1060,12 @@ extern "C" {
|
||||
#[wasm_bindgen(method, js_name = setMonth)]
|
||||
pub fn set_month(this: &Date, month: u32) -> f64;
|
||||
|
||||
/// The setSeconds() method sets the seconds for a specified date according to local time.
|
||||
///
|
||||
/// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setSeconds
|
||||
#[wasm_bindgen(method, js_name = setSeconds)]
|
||||
pub fn set_seconds(this: &Date, seconds: u32) -> f64;
|
||||
|
||||
/// The toDateString() method returns the date portion of a Date object
|
||||
/// in human readable form in American English.
|
||||
///
|
||||
|
Reference in New Issue
Block a user