This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export async function http<T>(request: RequestInfo): Promise<T> { | |
const response = await fetch(request); | |
const body = await response.json(); | |
return body; | |
} | |
async function get() { | |
console.log("get"); | |
const icons = await http<{ | |
icons: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.1 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd"> | |
<score-partwise version="3.1"> | |
<work> | |
<work-number>Op. 98</work-number> | |
<work-title>An die ferne Geliebte (Page 1)</work-title> | |
</work> | |
<identification> | |
<creator type="composer">Ludwig van Beethoven</creator> | |
<creator type="lyricist">Aloys Jeitteles</creator> |