This is a Typescript wrapper for SheetValues, by BoatBomber. The goal of this package is to provide a typesafe way of accessing FFlag values.
fflag-provider.ts
const SPREAD_ID = "Spreadsheet ID";
const FFlagProvider = new FFlagManager(SPREAD_ID);
export = FFlagProvider;
fflag-definitions.ts
export const FFLAG_TEST = new FFlag("SomeTestFFlag", t.boolean, false);
test.server.ts
while (wait(1)) {
print(FFlagProvider.GetFFlag(FFLAG_TEST));
}