stoplightio/scripts

View on GitHub
templates/srcs/lib/src/library.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ILibrary } from './types';

// Example... remove / rename file if doesn't make sense
export class Library implements ILibrary {
  public run() {
    return true;
  }
}