Skip to content

Instantly share code, notes, and snippets.

View nightillusions's full-sized avatar
🌎
Remote Work

Pascal Jordin nightillusions

🌎
Remote Work
View GitHub Profile
@nightillusions
nightillusions / dialogflow-fulfillment.d.ts
Created October 28, 2019 15:21 — forked from slowtick/dialogflow-fulfillment.d.ts
Fix payload constructor parameters
declare module 'dialogflow-fulfillment' {
import { DialogflowConversation } from 'actions-on-google';
import { Request, Response } from 'express';
export class Card extends RichResponse {
constructor(card: string | object);
public setButton(button: {
text: string,
url: string,
@nightillusions
nightillusions / register-post-type.php
Created May 16, 2017 09:56 — forked from justintadlock/register-post-type.php
Help file when registering post types.
<?php
# Register custom post types on the 'init' hook.
add_action( 'init', 'my_register_post_types' );
/**
* Registers post types needed by the plugin.
*
* @since 1.0.0
* @access public