Just to confirm. The footnote means each DO instance and not DO class?
Just to confirm. The footnote means each DO instance and not DO class?
sharp would be great, but that doesn't seem to work as far as I can tell.js library so I can get code completion in Pycharm?




sharpjsimport * as assert from 'node:assert';
const scores = await fetch('./scores.json');
const data = await scores.json() as any;
assert('weights' in data, `Failed to get weight data of scores.json`);
assert('max_scores' in data, `Failed to get max scores data of scores.json`);
export const WEIGHTS: { [key: string]: number; } = Object.freeze(data['weights']);