1.0.0 • Published 6 years ago

get-static v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

get-static

get static class by give a object

npm install get-static

demo

const getStatic = require("get-static/node");

import getStatic from 'get-static';
export class A
{
	static b()
	{
		console.log('this is static b');
	}

	b()
	{
		console.log('this is b');
	}
}

export let a = new A();
export const c = getStatic<typeof A>(a);

c.b();
a.b();
this is static b
this is b
export declare class A {
    static b(): void;
    b(): void;
}
export declare let a: A;
export declare const c: typeof A;