jhm-ciberman/docs_gm

View on GitHub
src/doc_models/DocReturns.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Represents a returned value of a script.
 */
export default class DocReturns {

    /**
     * The type of the returned value.
     */
    public type: string = "";

    /**
     * The description of the returned value
     */
    public description: string = "";

}