Eyas
Eyas
This is one potential fix to #180 that allows schema-dts to continue to be used with `import` and any/no bundlers without increasing bundle size. It is also possible to address...
I'm trying to get the extension schema for datacommons.org in a machine-consumable form (ideally an .nt file). I tried requested `schema.datacommons.org/latest/all-layers.nt` and similar, but that gives me Schema.org schema without...
I tried this twice, with goog.provide and goog.module, with similar results: ## Actual ### Using Provide ```js goog.provide('lib.my'); /** * @param {string} data */ lib.my.resemble = function(data) {}; /** @returns...
Two uses of `Organization` show examples using `OrganizationRole` in its place, but the schema does not allow for this: # `aluminOf` https://schema.org/alumniOf can only be `Organization` or `EducationalOrganization`. `OrganizationRole` is...
With `schema-dts` v1, we already know to return compile errors for: ```ts import { Number, Integer, Float } from 'schema-dts'; const a: Number = ''; // error const b: Number...