This repository was archived by the owner on Jul 14, 2026. It is now read-only.
Description https://github.com/groton-school/myschoolapp-reporting/blob/96e4986e0d152b2eb1eb83ee44990ea725161bcc/packages/datadirect/src/Entities/Competencies/Setup.ts#L17
import { JSONValue } from '@battis/typescript-tricks' ;
import { LevelSetting } from './LevelSetting.js' ;
export type Setup = {
TransSkillLabel : string ;
UseTransSubSkill : boolean ;
TransSubSkillLabel : string ;
ContentSkillLabel : string ;
UseContentSubSkill : boolean ;
ContentSubSkillLabel : string ;
ContentSubSkillAllowTeacher : boolean ;
TransSubSkillInUse : boolean ;
ContentSubSkillInUse : boolean ;
TransSkillInUse : boolean ;
ContentSkillInUse : boolean ;
LevelSettings : LevelSetting [ ] ;
RatingScale : JSONValue [ ] ; // TODO Competency/CompetencySetup.Response.RatingScale type
TransSkillCategoriesList : JSONValue [ ] ; // TODO Competency/CompetencySetup.Response.TransSkillCategoriesList type
ContentAreaCategoriesList : JSONValue [ ] ; // TODO Competency/CompetencySetup.Response.ContentAreaCategoriesList type
} ; Reactions are currently unavailable
https://github.com/groton-school/myschoolapp-reporting/blob/96e4986e0d152b2eb1eb83ee44990ea725161bcc/packages/datadirect/src/Entities/Competencies/Setup.ts#L17