@logo-software/timer
Version:
Timer helps developer to set a specific time for their web apps and doSomething after completed.
31 lines (30 loc) • 793 B
TypeScript
/**
* @license
* Copyright LOGO YAZILIM SANAYİ VE TİCARET A.Ş. All Rights Reserved.
*
* Save to the extent permitted by law, you may not use, copy, modify,
* distribute or create derivative works of this material or any part
* of it without the prior written consent of LOGO YAZILIM SANAYİ VE TİCARET A.Ş. Limited.
* Any reproduction of this material must contain this notice.
*/
/**
* Language interface details:
*/
export interface Lang {
/**
* Seconds name as string in local language
*/
seconds: string;
/**
* Minutes name as string in local language
*/
minutes: string;
/**
* Hours name as string in local language
*/
hours: string;
/**
* Days name as string in local language
*/
days: string;
}