timReynolds/typescript-npm-package-starter

View on GitHub
src/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface IExample {
  hello(): string;
}

export default class Example implements IExample {
  public hello() {
    return "World";
  }
}