Archived
1
0

add more stuff

This commit is contained in:
Jeff Becker 2016-10-18 09:32:00 -04:00
parent de5883d0a0
commit 2aa79bd014
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,7 @@
/** @brief type that is called to initialize a dom element */
export interface Init
{
initialize (elem : any);
}

View File

@ -0,0 +1,11 @@
import { Init } from "./common"
export class Postform implements Init
{
initialize(elem : any) {
}
}