mirror of
https://github.com/tomoko-dev9/nntpchan.git
synced 2026-06-01 20:34:46 +02:00
8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
|
|
/** @brief type that is called to initialize a dom element */
|
|
export interface Init
|
|
{
|
|
initialize (elem : any);
|
|
}
|
|
|