Skip to content

Commit

Permalink
chore(release): Add 0.1.0 release files [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
ls-age CI committed Jun 15, 2019
1 parent e28a0d7 commit 49fbf45
Show file tree
Hide file tree
Showing 5 changed files with 90 additions and 0 deletions.
33 changes: 33 additions & 0 deletions out/es/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions out/es/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions out/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions out/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions out/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/// <reference types="html-to-text" />
import { Options as JuiceOptions } from 'juice';
interface SvelteSSRComponent {
render(data: {}): {
html: string;
css: {
code: string;
};
head: string;
};
}
export declare function renderMail(Component: SvelteSSRComponent, { data, ...options }?: {
data?: {};
} & JuiceOptions & HtmlToTextOptions): Promise<{
html: string;
text: string;
}>;
export {};

0 comments on commit 49fbf45

Please sign in to comment.