You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					25 lines
				
				594 B
			
		
		
			
		
	
	
					25 lines
				
				594 B
			| 
								 
											3 years ago
										 
									 | 
							
								import { PluginFunc, ConfigType } from 'dayjs/esm'
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								declare interface RelativeTimeThreshold {
							 | 
						||
| 
								 | 
							
								  l: string
							 | 
						||
| 
								 | 
							
								  r?: number
							 | 
						||
| 
								 | 
							
								  d?: string
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								declare interface RelativeTimeOptions {
							 | 
						||
| 
								 | 
							
								  rounding?: (num: number) => number
							 | 
						||
| 
								 | 
							
								  thresholds?: RelativeTimeThreshold[]
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								declare const plugin: PluginFunc<RelativeTimeOptions>
							 | 
						||
| 
								 | 
							
								export = plugin
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								declare module 'dayjs/esm' {
							 | 
						||
| 
								 | 
							
								  interface Dayjs {
							 | 
						||
| 
								 | 
							
								    fromNow(withoutSuffix?: boolean): string
							 | 
						||
| 
								 | 
							
								    from(compared: ConfigType, withoutSuffix?: boolean): string
							 | 
						||
| 
								 | 
							
								    toNow(withoutSuffix?: boolean): string
							 | 
						||
| 
								 | 
							
								    to(compared: ConfigType, withoutSuffix?: boolean): string
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								}
							 |