feat: update deps

This commit is contained in:
Travis Fischer
2021-01-25 16:31:14 -05:00
parent f35d8eb0eb
commit 4a9e85869d
4 changed files with 37 additions and 17 deletions

9
lib/get-page-tweet.ts Normal file
View File

@@ -0,0 +1,9 @@
import * as types from './types'
import { getPageProperty } from 'notion-utils'
export function getPageTweet(
block: types.Block,
recordMap: types.ExtendedRecordMap
): string | null {
return getPageProperty('Tweet', block, recordMap)
}