projection-scope.js 149 B

123456789
  1. /**
  2. * Projection scope.
  3. *
  4. * @type {{INPUT: string, OUTPUT: string}}
  5. */
  6. export const ProjectionScope = {
  7. INPUT: 'input',
  8. OUTPUT: 'output',
  9. };