Skip to content

Commit

Permalink
fix: export interface and README (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
sno2 authored Oct 24, 2020
1 parent b2f2dc9 commit 6f636df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Official handlebars docs: [Guide](https://handlebarsjs.com/guide)
### How to use renderer

```ts
import { Handlebars } from 'https://deno.land/x/handlebars/mod.ts';
import { Handlebars, HandlebarsConfig } from 'https://deno.land/x/handlebars/mod.ts';

// First, create instance of Handlebars

Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "https://deno.land/[email protected]/path/mod.ts";
const { readFile } = Deno;

interface HandlebarsConfig {
export interface HandlebarsConfig {
baseDir: string;
extname: string;
layoutsDir: string;
Expand Down

0 comments on commit 6f636df

Please sign in to comment.