Setting up and documenting Presentation Util (#88112)

This commit is contained in:
Clint Andrew Hall 2021-01-28 17:15:13 -06:00 committed by GitHub
parent 608efb0a3d
commit 55afba4a4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
50 changed files with 1360 additions and 249 deletions

7
typings/index.d.ts vendored
View file

@ -23,3 +23,10 @@ declare module '*.svg' {
// eslint-disable-next-line import/no-default-export
export default content;
}
// Storybook references this module. It's @ts-ignored in the codebase but when
// built into its dist it strips that out. Add it here to avoid a type checking
// error.
//
// See https://github.com/storybookjs/storybook/issues/11684
declare module 'react-syntax-highlighter/dist/cjs/create-element';