dev-credit
Version:
Add essential developer credits (4 meta tags) to Next.js projects - Published by Softq Web Solutions
20 lines (17 loc) • 470 B
TypeScript
/**
* TypeScript declarations for dev-credit/auto module
* @author Himangshu Mishra <contact@mishra.codes>
* @publisher Softq Web Solutions - softq.live
*/
export interface CreditData {
/** Developer name */
developer: string;
/** Developer website URL */
website: string;
/** Developer email address */
email: string;
}
/**
* Developer credit data used in auto module (simplified)
*/
export declare const CREDIT_DATA: CreditData;