- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
19 lines
504 B
TypeScript
19 lines
504 B
TypeScript
/**
|
|
* @name fromUnixTime
|
|
* @category Timestamp Helpers
|
|
* @summary Create a date from a Unix timestamp.
|
|
*
|
|
* @description
|
|
* Create a date from a Unix timestamp (in seconds). Decimal values will be discarded.
|
|
*
|
|
* @param unixTime - The given Unix timestamp (in seconds)
|
|
*
|
|
* @returns The date
|
|
*
|
|
* @example
|
|
* // Create the date 29 February 2012 11:45:05:
|
|
* const result = fromUnixTime(1330515905)
|
|
* //=> Wed Feb 29 2012 11:45:05
|
|
*/
|
|
export declare function fromUnixTime(unixTime: number): Date;
|